home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Corrida / dragracer.swf / scripts / DefineButton2_1617 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2005-10-06  |  266 b   |  13 lines

  1. on(release){
  2.    if(_root.player.cash - cost > 0)
  3.    {
  4.       _root.player.cash -= cost;
  5.       _root.buyItem(_root.car,PROPERTY,-75);
  6.       _root.attachMovie("WRENCH","wrench111",747);
  7.    }
  8.    else
  9.    {
  10.       _root.prompt("E","Not Enough Cash!",3);
  11.    }
  12. }
  13.